FarPoint.Web.Spread Assembly > FarPoint.Web.Spread.Model Namespace > GroupDataModel Class > Group Method : Group(SortInfo[]) Method |
'Usage Dim instance As GroupDataModel Dim sortInfo() As SortInfo instance.Group(sortInfo)
private void button1_Click(object sender, EventArgs e) { FarPoint.Web.Spread.Model.GroupDataModel gm = new FarPoint.Web.Spread.Model.GroupDataModel(FpSpread1.ActiveSheetView.DataModel); FarPoint.Web.Spread.SortInfo[] sort = new FarPoint.Web.Spread.SortInfo[1]; sort[0] = new FarPoint.Web.Spread.SortInfo(0, true); gm.Group(sort); FpSpread1.ActiveSheetView.DataModel = gm; }
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click Dim gm As New FarPoint.Web.Spread.Model.GroupDataModel(FpSpread1.ActiveSheetView.DataModel) Dim sort(0) As FarPoint.Web.Spread.SortInfo sort(0) = New FarPoint.Web.Spread.SortInfo(0, True) gm.Group(sort) FpSpread1.ActiveSheetView.DataModel = gm End Sub
Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional